home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 04 / 7 / DISK0478.ZIP / POKING.TXT < prev    next >
Text File  |  1986-02-20  |  2KB  |  35 lines

  1.                      POKing Around On The Fixed Disk
  2.  
  3.                                Chris Thomas
  4.                                    UCLA
  5.  
  6. The other day I was investigating how many files I could put on my fixed
  7. disk.  The DOS manual indicated that the format of the disk depends on how
  8. much of it is allocated for DOS. So I POKEd around and found that when
  9. allocated entirely for DOS use, the 20740 sectors on the 10MB Fixed Disk
  10. are allocated as follows:
  11.  
  12.                       # of
  13.                      Sectors            Use
  14.                      --------        -----------
  15.                      1       System boot and partition map
  16.                      1       DOS boot record
  17.                      8       FAT
  18.                      8       FAT - duplicate copy
  19.                      32      Directory
  20.                      20688   Data sectors (2586 clusters)
  21.                      2       Unused sectors(not mapped
  22.                                by FAT)
  23.                      68      Cylinder 305, used by
  24.                                diagnostic routines
  25.  
  26. There are eight sectors per cluster, meaning the smallest file takes 4K.
  27. This is necessitated by the architecture of the File Allocation Table,
  28. which allows a maximum of 4087 clusters.  The directory has space for 512
  29. files, unless there is some other limitation in DOS.
  30.  
  31. One result of this exploration is that I feel much pressure to use
  32. subdirectories to keep from running out of directory space.  Although
  33. subdirectories are fine for some data, many things only coexist with
  34. subdirectories and don't actually support them.
  35.